home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #9 / Amiga Plus CD - 2004 - No. 09.iso / amigaplus / tools / amigaos4_only / tunnel / makefile < prev    next >
Makefile  |  2004-08-03  |  653b  |  34 lines

  1.  
  2. CFLAGS =
  3.  
  4. CC = ppc-amigaos-gcc -O3 -g -DINLINE=__inline
  5. AR = ar
  6. RANLIB = ppc-amigaos-ranlib
  7. DEBUGLIB =
  8.  
  9. all: tunnel planes boxtunnel quadplane
  10.  
  11. tunnel: tunnel.o
  12.     $(CC) -o tunnel tunnel.o gcc:lib/libm.a
  13.  
  14. planes: planes.o
  15.     $(CC) -o planes planes.o gcc:lib/libm.a
  16.  
  17. boxtunnel: boxtunnel.o
  18.     $(CC) -o boxtunnel boxtunnel.o gcc:lib/libm.a
  19.  
  20. quadplane: quadplane.o
  21.     $(CC) -o quadplane quadplane.o gcc:lib/libm.a
  22.  
  23. tunnel.o: tunnel.c
  24.     $(CC) -c tunnel.c -o tunnel.o
  25.  
  26. planes.o: tunnel.c
  27.     $(CC) -c tunnel.c -o planes.o -DPLANES
  28.  
  29. boxtunnel.o: tunnel.c
  30.     $(CC) -c tunnel.c -o boxtunnel.o -DBOXTUNNEL
  31.  
  32. quadplane.o: tunnel.c
  33.     $(CC) -c tunnel.c -o quadplane.o -DQUADPLANE
  34.